home *** CD-ROM | disk | FTP | other *** search
/ Java 1996 August / Java - Summer 1996.iso / kaffe-0.2 / kaffe / access.h next >
C/C++ Source or Header  |  1996-02-11  |  730b  |  32 lines

  1. /*
  2.  * access.h
  3.  * Access flags.
  4.  *
  5.  * Copyright (c) 1996 Systems Architecture Research Centre,
  6.  *           City University, London, UK.
  7.  *
  8.  * See the file "license.terms" for information on usage and redistribution
  9.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  10.  *
  11.  * Written by Tim Wilkinson <tim@sarc.city.ac.uk>, February 1996.
  12.  */
  13.  
  14. #ifndef __access_h
  15. #define __access_h
  16.  
  17. typedef u2            accessFlags;
  18.  
  19. #define    ACC_PUBLIC        0x0001
  20. #define    ACC_PRIVATE        0x0002
  21. #define    ACC_PROTECTED        0x0004
  22. #define    ACC_STATIC        0x0008
  23. #define    ACC_FINAL        0x0010
  24. #define    ACC_SYNCHRONISED    0x0020
  25. #define    ACC_VOLATILE        0x0040
  26. #define    ACC_TRANSIENT        0x0080
  27. #define    ACC_NATIVE        0x0100
  28. #define    ACC_INTERFACE        0x0200
  29. #define    ACC_ABSTRACT        0x0400
  30.  
  31. #endif
  32.